home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / INFO / INTER39B.ZIP / GLOSSARY.LST < prev    next >
File List  |  1994-02-06  |  29KB  |  787 lines

  1. GLOSSARY
  2. Last Change 2/6/94.
  3.  
  4. A20
  5.     (Address line 20) The 80286 and higher CPUs allow addresses in
  6. real mode to extend slightly beyond the one megabyte mark, which causes
  7. an incompatibility with some older programs which expect such addresses
  8. to wrap back to the beginning of the address space.  For complete
  9. compatibility with the 8088, newer machines thus contain circuitry
  10. which permits the twenty-first address line (A20) to be disabled.  The
  11. CPU then effectively has only twenty address lines in real mode, just
  12. as the 8088 does, and addresses which would extend beyond the one
  13. megabyte mark wrap to the beginning of the address space.  See also
  14. High Memory Area, Real Mode.
  15.  
  16. ABIOS
  17.     (Advanced BIOS) The IBM XT/286 and PS/2 models with 80286 or
  18. higher processors contain two separate BIOSes.  The ABIOS is a
  19. protected-mode BIOS which is used by OS/2.  For machines without an
  20. ABIOS, such as the IBM AT, OS/2 loads the equivalent of the ABIOS from
  21. disk.  see also CBIOS
  22.  
  23. API
  24.     (Application Program[ming] Interface) The defined set of calls
  25. which a program may make to interact with or request services of the
  26. operating system or environment under which it is running.  Because the
  27. inputs and outputs of the calls are well-defined, a program using the
  28. API can continue using the identical calls even if the internal
  29. organization of the program providing the API changes.
  30.  
  31. APL
  32.     (A Programming Language) An interactive, mathematically-
  33. oriented language which is well-suited to manipulating matrices.
  34. Originally using greek letters and numerous special symbols, thus
  35. requiring a special display, versions are now available which use
  36. keywords in place of the special symbols.
  37.  
  38. ASCIZ
  39.     A NUL-terminated ASCII string.  The ASCIZ string "ABC" consists
  40. of the four bytes 41h, 42h, 43h, and 00h.  Unless otherwise specified,
  41. maximum lengths given in the interrupt list do not include the
  42. terminating NUL.
  43.  
  44. AVATAR
  45.     (Advanced Video Attribute Terminal Assembler and Recreator) A
  46. set of control codes which may be used to affect the output of
  47. characters to the screen on systems equipped with an appropriate
  48. driver.  Similar in intent to ANSI sequences, AVATAR has shorter
  49. command sequences and provides additional PC-specific functionality.
  50. AVATAR is primarily used by the Opus and Maximus bulletin board systems
  51. (it was designed by one of the developers of the Opus system).
  52.  
  53. BASIC
  54.     (Beginner's All-purpose Symbolic Instruction Code) A
  55. programming language originally designed as a means of teaching
  56. FORTRAN.  There are many variations of BASIC with differing
  57. capabilities; the majority are interpreted but compiled BASIC is
  58. becoming more popular.  All genuine IBM personal computers (including
  59. the latest PS/2 models) come equipped with a cassette-based BASIC
  60. interpreter in ROM.
  61.  
  62. BCD
  63.     (Binary Coded Decimal) A method of data storage where two
  64. decimal digits are stored in each byte, one in the upper four bits and
  65. the other in the lower four bits.  Since only the values 0 through 9
  66. are used in each half of a byte, BCD values can be read as decimal
  67. numbers on a hexadecimal display of memory or a file.
  68.  
  69. Big-Endian
  70.     One of the two major ways of organizing multi-byte numeric
  71. values in memory.  A big-endian layout places the most significant byte
  72. of the value in the lowest (first) memory location, i.e. 12345678h is
  73. stored as 12h 34h 56h 78h.  Motorola processors are big-endian.  Compare
  74. Little-Endian.
  75.  
  76. BIOS
  77.     (Basic Input/Output System) A set of standardized calls giving
  78. low-level access to the hardware.  The BIOS is the lowest software
  79. layer above the actual hardware and serves to insulate programs (and
  80. operating systems) which use it from the details of accessing the
  81. hardware directly.
  82.  
  83. BIOS Parameter Block
  84.     The BIOS Parameter Block stores the low-level layout of a
  85. drive.  See also INT 21h Function 53h.
  86.  
  87. Boot
  88.     To start up the computer or operating system. The term "boot"
  89. is a contraction of "bootstrap", which in turn comes from the
  90. expression "to lift oneself by one's boot straps."  The ROM BIOS on IBM
  91. PCs and compatibles reads in the first sector of the disk, which
  92. contains a short (less than 500 bytes) program that reads in a portion
  93. of the operating system, which in turn reads in the remainder of the
  94. operating system.
  95.  
  96. Boot Drive
  97.     The disk drive from which the operating system was booted.  See
  98. also Boot.
  99.  
  100. BPB
  101.     see BIOS Parameter Block
  102.  
  103. Breakpoint
  104.     When debugging, a memory location which when accessed causes a
  105. break in the normal flow of execution and the invocation of the
  106. debugger.  Used to let a program run at full speed until a certain
  107. instruction is reached or (less frequently) a particular data item is
  108. accessed or changed.
  109.  
  110. Cache
  111.     Caching is a method of increasing performance by keeping
  112. frequently-used data in a location which is more quickly accessed. The
  113. most common caches are disk caches (store disk sectors in RAM) and RAM
  114. caches (store portions of main memory in special high-speed RAM which
  115. may be accessed as fast as the CPU is capable of accessing memory).
  116.  
  117. Callback
  118.     A call to a specified function made by the operating system or
  119. operating environment when a request (usually an asynchronous request)
  120. completes.  This permits the calling program to continue operating while
  121. the request is processed yet still be aware of its completion
  122. immediately without the need to constantly poll the request's status.
  123. See also Callout.
  124.  
  125. Callout
  126.     A call made by the operating system, operating environment, or
  127. an application program on various events, which may be intercepted by
  128. other software which is interested in the current state of the system.
  129. See also Callback, External Device Interface.
  130.  
  131. CAS
  132.     see Communicating Applications Specification
  133.  
  134. CBIOS
  135.     (Compatibility BIOS) The IBM XT/286 and PS/2 models with 80286
  136. or higher processors contain two separate BIOSes.  The CBIOS is a
  137. real-mode BIOS which is compatible with the earlier products in the IBM
  138. PC family and PS/2 models with 8086 processors.  See also ABIOS.
  139.  
  140. CDS
  141.     see Current Directory Structure
  142.  
  143. CGA
  144.     (Color/Graphics Adapter) One of the two video display boards
  145. introduced together with the original IBM PC.  See also HGC, MDA.
  146.  
  147. Clock Tick
  148.     1/18.2 second, or approximately 55 milliseconds.  This is the
  149. rate at which the IBM PC's system clock is updated.
  150.  
  151. CMOS
  152.     (Complementary Metal-Oxide-Silicon) A type of integrated
  153. circuit design known for its low power consumption.
  154.  
  155. Communicating Applications Specification
  156.     DCA and Intel's standard programmatic interface for sending and
  157. receiving FAXes via any of a number of internal FAX boards.
  158.  
  159. CP/M
  160.     (Control Program for Microcomputers) An early operating system
  161. for micros based on the 8-bit Intel 8080 CPU (and later the compatible
  162. 8085 and Zilog Z80 CPUs).  MSDOS version 1.0 was essentially a clone of
  163. CP/M for the Intel 8086.
  164.  
  165. CP/M-86
  166.     One of the three operating systems offered by IBM for its
  167. original PC (the other two were MSDOS and the UCSD p-System).  It has
  168. since evolved into DR-DOS version 6.
  169.  
  170. CPU
  171.     (Central Processing Unit) The microprocessor which executes
  172. programs on your computer.
  173.  
  174. Current Directory Structure
  175.     The data record used by DOS to keep track of the current
  176. directory on a drive; whether the drive is valid, network, SUBSTituted,
  177. or JOINed; and other pertinent information.  See also INT 21h Function
  178. 52h.
  179.  
  180. Cylinder
  181.     The set of concentric tracks of data located at the same
  182. position on each data-bearing surface of the disk. A double-sided
  183. floppy will contain two tracks per cylinder.
  184.  
  185. DAC
  186.     (Digital-to-Analog Converter) A hardware device (in its simplest
  187. form, nothing more than a set of interconnected resistors) which converts
  188. a digital number into an analog signal whose voltage is proportional to
  189. the value of the digital number.  VGA and later color video boards use
  190. DACs to convert color values into the analog signals sent to the display;
  191. sound boards normally use DACs as well.
  192.  
  193. DCC
  194.     (Display Combination Code) A number which indicates both the
  195. type of display adapter board and the type of monitor attached to the
  196. video board.
  197.  
  198. Delayed Write
  199.     A form of caching in which control is returned before the data is
  200. actually written to the storage media.  See also Cache.
  201.  
  202. Device Driver
  203.     An interface module between the device-independent portions of
  204. the operating system and an actual hardware device which converts
  205. device-independent requests into the actual sequence of device
  206. operations to perform the requested action.  IO.SYS contains the
  207. standard, built-in MSDOS device drivers such as CON, COM1, AUX, PRN,
  208. etc.  See also INT 21h Function 52h and INT 2Fh Function 0802h.
  209.  
  210. Device Driver Request Header
  211.     The data structure passed to a device driver which contains the
  212. command to be executed, its parameters, and space for a returned status
  213. and data values.  See INT 2Fh Function 0802h.
  214.  
  215. DGIS
  216.     (Direct Graphics Interface Standard)
  217.  
  218. Direct Memory Access
  219.     A method whereby peripherals may transfer data into or out of
  220. main memory without the involvement of the CPU.
  221.  
  222. Disk Transfer Address
  223.     The Disk Transfer Address indicates where functions which do
  224. not take an explicit data address will read or store data.  Although
  225. the name implies that only disk accesses use this address, other
  226. functions use it as well.  See INT 21h Function 4Eh for an example of
  227. the DTA's use.
  228.  
  229. DLL
  230.     see Dynamic Link Library
  231.  
  232. DMA
  233.     see Direct Memory Access
  234.  
  235. DOS Extender
  236.     A program which allows a program to run in protected mode while still
  237. retaining access to real-mode MSDOS services.  See also Protected Mode.
  238.  
  239. DOS Parameter List
  240.     The DOS Parameter List is used to pass arguments to SHARE and
  241. network functions.  See also INT 21h Function 5D00h.
  242.  
  243. DOS Protected-Mode Interface
  244.     An API which provides basic services for protected-mode programs to
  245. allocate memory, invoke real-mode software, etc.  See also Virtual Control
  246. Program Interface.
  247.  
  248. DPB
  249.     see Drive Paramter Block
  250.  
  251. DPL
  252.     see DOS Parameter List
  253.  
  254. DPMI
  255.     see DOS Protected-Mode Interface
  256.  
  257. Drive Parameter Block
  258.     The DOS Drive Parameter Block stores the description of the
  259. media layout for a logical drive, as well as some housekeeping
  260. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  261.  
  262. DTA
  263.     see Disk Transfer Address
  264.  
  265. DWORD
  266.     Doubleword; four bytes.  Commonly used to hold a 32-bit
  267. segment:offset or selector:offset address.
  268.  
  269. Dynamic Link Library
  270.     A collection of subroutines which are linked with a program at
  271. the time it is loaded into memory rather than permanently placed in the
  272. executable.  This has the advantage of allowing a single copy of the
  273. subroutine library to reside on disk or in memory even when it is used
  274. by many programs.  It also permits all programs using the DLL to be
  275. updated without recompiling simply by installing a new version of the
  276. library.
  277.  
  278. EGA
  279.     (Enhanced Graphics Adapter) IBM's second color video board for the
  280. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  281. simultaneous colors of a total of 64 possible colors.
  282.  
  283. EISA
  284.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  285. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  286. Architecture bus).
  287.  
  288. EMS
  289.     see Expanded Memory Specification
  290.  
  291. EOI
  292.     (End of Interrupt) A particular command sent to the interrupt
  293. controller to indicate that the interrupt has been handled by software
  294. and that new interrupts of the same or lower priority may now be signalled
  295. by the interrupt controller.
  296.  
  297. ESDI
  298.     (Enhanced Small Device Interface) A disk drive interface type
  299. which was briefly popular before IDE took over.  An ESDI drive can
  300. transfer data between the drive and controller at 10, 15, or 20
  301. megabits per second, which is faster than an MFM or RLL controller but
  302. slower than what is possible with an IDE or SCSI drive.  See also IDE.
  303.  
  304. Expanded Memory Specification
  305.     A specification devised by Lotus, Intel, and Microsoft for
  306. accessing more than one megabyte of memory by bank-switching additional
  307. memory into the one megabyte real mode address space.
  308.  
  309. Extended BIOS Data Area
  310.     A block of memory, typically the 1K at the top of conventional
  311. memory, which is used to store additional data for use by the BIOS which
  312. does not fit into the 256-byte data area at segment 0040h.
  313.  
  314. Extended File Control Block
  315.     A DOS File Control Block which has had an additional seven
  316. bytes prepended to permit control of file attributes (which are stored
  317. in the appendage).  See also FCB.
  318.  
  319. Extended Memory
  320.     Memory beyond the one megabyte address which is available only
  321. on 80286 and higher machines.  Except for a small portion (the High
  322. Memory Area), extended memory is only accessible from protected mode.
  323.  
  324. Extended Memory Specification
  325.     A specification devised by Microsoft which allows multiple
  326. programs to share extended (above 1 megabyte) memory and noncontiguous
  327. memory above 640K.  See also Upper Memory Block.
  328.  
  329. External Device Interface
  330.     A series of calls made by the DESQview multitasker on various
  331. "interesting" events, which may be intercepted by programs which wish to
  332. keep track of the current system state.  See also Callout.
  333.  
  334. FAT
  335.     see File Allocation Table
  336.  
  337. FCB
  338.     see File Control Block
  339.  
  340. File Allocation Table
  341.     A data structure on disk that records which clusters are free,
  342. which are unusable, and which have been allocated.  The clusters occupied
  343. by a file are linked into a list in the file allocation table, allowing
  344. DOS to find the contents of the file.
  345.  
  346. File Control Block
  347.     A data record in the calling program's address space which is
  348. used by DOS 1.x functions to record the state of an open file.  See
  349. also INT 21h Function 13h.
  350.  
  351. File Handle
  352.     A small positive integer used to identify the previously-opened
  353. file on which a program wishes to perform an operation.
  354.  
  355. Flush
  356.     To force the copying of any data still stored in temporary
  357. buffers to its final destination.
  358.  
  359. FM
  360.     (Frequency Modulation)  A method of encoding data as a series of
  361. magnetic flux reversals on disk or tape, commonly known as single-density
  362. recording.  In frequency modulation, a series of clock pulses are written
  363. at regular intervals, with one data bit for each clock pulse.  See also
  364. MFM, RLL.
  365.  
  366. Formatting
  367.     Preparing a storage medium (usually magnetic media such as a
  368. disk or tape) for storing data.  Low-level or physical formatting
  369. writes all necessary housekeeping data to enable the storage device
  370. to read the media and may also initialize the storage units on the
  371. media to a known state.  High-level or logical formatting writes data
  372. used by the operating system, such as allocation information and
  373. directories onto media which has already been physically formatted.
  374. Formatting programs often perform both a low-level and a high-level
  375. format.
  376.  
  377. FOSSIL
  378.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  379. for performing serial I/O, originally used by the Fido and Opus bulletin-
  380. board software and Seadog bulletin-board mailer, but now in wider use.
  381.  
  382. FTP
  383.     (File Transfer Protocol)  The standard protocol for copying files
  384. from one machine to another on a TCP/IP (Internet) network.  Also the
  385. program of the same name with which a user may transfer files.
  386.  
  387. Handle
  388.     A short identifier, usually a small integer or a pointer, for
  389. some other object which is maintained or controlled by the operating
  390. system or environment; a particular handle may be valid system-wide or
  391. may have meaning only for a particular process.  See also File Handle.
  392.  
  393. HGC
  394.     (Hercules Graphics Controller) A monochrome video adapter capable
  395. of 720x352 monochrome graphics.  The HGC was the first non-IBM video
  396. adapter for the IBM PC.  See also CGA, MDA.
  397.  
  398. High Memory Area
  399.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  400. This area is accessible from real mode on the 80286 and higher
  401. processors because these processors do not wrap addresses at one
  402. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  403. 4A01h.
  404.  
  405. HMA
  406.     see High Memory Area
  407.  
  408. IDE
  409.     (Integrated Drive Electronics) A type of disk drive interface
  410. which essentially extends the PC's expansion bus all the way to the
  411. drive and places the drive controller on the disk drive itself.  See
  412. also ESDI.
  413.  
  414. IFS
  415.     see Installable File System
  416.  
  417. Installable File System
  418.     An Installable File System which allows non-DOS format media to
  419. be used by DOS.  In most ways, an IFS is very similar to a networked
  420. drive, although an IFS would typically be local rather than remote.
  421. See also INT 21h Function 52h.
  422.  
  423. IP
  424.     (Internet Protocol) The lower level (transport layer) of the
  425. TCP/IP protocol suite.  See also TCP, TCP/IP.
  426.  
  427. IPC
  428.     (Inter-Process Communication) Any one of numerous methods for
  429. allowing two or more separate processes to exchange data.
  430.  
  431. IPX
  432.     (Internetwork Packet Exchange) A low-level layer of Novell's
  433.     NetWare networking software.
  434.  
  435. IRQ
  436.     (Interrupt ReQuest) A hardware line connected to the interrupt
  437. controller chip which signals that a CPU interrupt should be generated.
  438.  
  439. ISA
  440.     (Industry-Standard Architecture) The expansion bus used by the
  441. IBM PC/AT.  See also EISA.
  442.  
  443. JFT
  444.     see Job File Table
  445.  
  446. Job File Table
  447.     The Job File Table (also called Open File Table) stored in a
  448. program's PSP which translates handles into SFT numbers.  See also INT
  449. 21h Function 26h.
  450.  
  451. List of Lists
  452.     An internal DOS table of lists and other tables through which
  453. most DOS-internal data structures may be reached.  See INT 21h Function
  454. 52h.
  455.  
  456. Little-Endian
  457.     One of the two major ways of organizing multi-byte numeric
  458. values in memory.  A little-endian layout places the least significant
  459. byte of the value in the lowest (first) memory location, i.e. 12345678h
  460. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  461. Compare Big-Endian.
  462.  
  463. LPT
  464.     Abbreviation for Line PrinTer.
  465.  
  466. MCB
  467.     see Memory Control Block
  468.  
  469. MCGA
  470.     (Multi-Color Graphics Array) The low-end color adapter offered
  471. in IBM's early PS/2 series machines.
  472.  
  473. MDA
  474.     (Monochrome Display Adapter) A text-only video adapter introduced
  475. together with the original IBM PC.  See also CGA, HGC.
  476.  
  477. Memory Control Block
  478.     The data structure containing the length and owner (among other
  479. things) of a portion of the memory managed by DOS.  See INT 21h
  480. Function 52h.
  481.  
  482. MFM
  483.     (Modified Frequency Modulation) A method of encoding data as a
  484. series of magnetic flux reversals on disk or tape, commonly known as
  485. double-density recording.  In contrast to FM, modified frequency
  486. modulation omits all clock pulses except those between pairs of zero
  487. bits.  See also FM, RLL.
  488.  
  489. Mickey
  490.     The smallest increment of motion a mouse can sense.
  491.  
  492. Multitasking
  493.     Any of a number of methods by which multiple programs may
  494. execute concurrently, with rapid switching between the programs giving
  495. the appearance that all are executing simultaneously.
  496.  
  497. MZ
  498.     The letters M and Z appear in numerous places in DOS (memory
  499. control blocks, .EXE header, etc.); the conventional explanation is
  500. that these are the initials of Mark Zbikowski, one of the principal
  501. architects of MSDOS 2.0.
  502.  
  503. NCB
  504.     see Network Control Block
  505.  
  506. NDIS
  507.     (Network Driver Interface Specification) A hardware-independent
  508. network interface developed by Microsoft and 3com.  See also Packet
  509. Driver, TCP/IP.
  510.  
  511. NetBIOS
  512.     One of a number of low-level device-independent network
  513. interfaces; the other major interfaces are Novell's IPX and the
  514. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  515.  
  516. Network Control Block
  517.     A Network Control Block used to pass requests to NetBIOS and
  518. receive status information from the NetBIOS handler.
  519.  
  520. Network Redirector
  521.     A program which permits access to network devices (disks,
  522. printers, etc.) using the MSDOS kernel network redirector interface.
  523. See also Network Shell, Redirector Interface.
  524.  
  525. Network Shell
  526.     A program which permits access to network devices (disks,
  527. printers, etc.) by intercepting DOS calls before they reach the DOS
  528. kernel and handling those operating on network devices while passing
  529. through actions on local devices.  See also Network Redirector.
  530.  
  531. NMI
  532.     see Non-Maskable Interrupt
  533.  
  534. Non-Maskable Interrupt
  535.     An interrupt which can not be disabled by clearing the CPU's
  536. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  537. interrupts are typically used to signal calamities which require
  538. immediate action, such as a hardware failure or imminent loss of power.
  539.  
  540. Non-Volatile RAM
  541.     Memory which can be modified like normal RAM but does not lose
  542. its contents when the system's power is turned off. This memory may be
  543. powered by a battery when the system power if off, or it may be a type
  544. of memory which does not need electricity to maintain its contents,
  545. such as EEPROM or bubble memory.
  546.  
  547. NVRAM
  548.     see Non-Volatile RAM
  549.  
  550. ODI
  551.     (Open Data-link Interface) A hardware-independent network
  552. interface developed by Novell, Inc.  See also NDIS, Packet Driver.
  553.  
  554. Open File Table
  555.     see Job File Table
  556.  
  557. Packet Driver
  558.     Any one of the numerous drivers conforming to FTP Software's
  559. Packet Driver Specification, which provides a hardware-independent
  560. network interface.  See also NDIS, ODI.
  561.  
  562. Park
  563.     To move a hard disk's read/write heads to a position in which
  564. it is safe to turn off the power and transport the disk drive.  Many
  565. drives also lock the heads into position when they are parked,
  566. providing additional protection from sudden movement.
  567.  
  568. Pel
  569.     see Pixel
  570.  
  571. Pixel
  572.     A picture element, the smallest addressable unit of a graphical
  573. display.
  574.  
  575. Post
  576.     Make known, either generally or to a specific handler, that a
  577. particular event of interest has occurred.
  578.  
  579. POST
  580.     see Power-On Self-Test
  581.  
  582. Power-On Self-Test
  583.     A brief examination of the system's functionality performed
  584. each time the system is turned on.
  585.  
  586. Program Segment Prefix
  587.     The Program Segment Prefix is a 256-byte data area prepended to
  588. a program when it is loaded.  It contains the command line that the
  589. program was invoked with, and a variety of housekeeping information for
  590. DOS.  See also INT 21h Function 26h.
  591.  
  592. Protected Mode
  593.     One of the operating modes of the 80286 and higher Intel
  594. processors, in which addresses used by programs no longer correspond to
  595. physical addresses and the CPU enforces various protection mechanisms
  596. designed to prevent one program from disrupting other programs or the
  597. operating system.  See also Real Mode, Virtual-86 Mode.
  598.  
  599. PSP
  600.     see Program Segment Prefix
  601.  
  602. PWORD
  603.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  604. consisting of a segment selector and a 32-bit offset.  See also DWORD,
  605. QWORD.
  606.  
  607. QWORD
  608.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  609.  
  610. Real Mode
  611.     One of the operating modes of the 80286 and higher Intel
  612. processors, and the only operating mode of the 8088, 8086, 80186, and
  613. 80188 processors.  In this mode, all addresses used by programs
  614. correspond directly to real physical addresses (thus the full name,
  615. Real Address Mode) and there are no CPU-imposed protections between
  616. programs.  See also Protected Mode, Virtual-86 Mode.
  617.  
  618. Redirector Interface
  619.     The set of device-independent INT 2Fh function calls invoked by
  620. the MSDOS kernel to operate on devices it recognizes as network
  621. devices.  These function calls provide a lower-level interface than the
  622. INT 21h calls made to DOS, allowing a program intercepting these
  623. functions to be simpler than one intercepting INT 21h calls.  See INT
  624. 2Fh Functions 1100h through 1130h.
  625.  
  626. RGB
  627.     (Red-Green-Blue) The color specification mechanism normally
  628. used in computer displays, where colors are separated into their
  629. primary-color components.  See also YUV.
  630.  
  631. RLL
  632.     (Run-Length Limited) A method of encoding data as a series of
  633. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  634. densities than MFM recording because it encodes the data such that
  635. (on average), fewer than one flux reversal per data bit is required
  636. (however, timing becomes more critical).  RLL is actually an entire
  637. family of encoding methods, specified with two numbers indicating the
  638. minimum and maximum distances between one bits (flux transitions).  The
  639. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  640. use.  MFM is in effect RLL-1,3.  See also FM, MFM.
  641.  
  642. SCSI
  643.     (Small Computer Systems Interface) A system-independent
  644. expansion bus typically used to connect hard disks, tape drives, and
  645. CD-ROMs to a computer.  A host adapter connects the SCSI bus to the
  646. computer's own bus.  See also ESDI, IDE.
  647.  
  648. SDA
  649.     see Swappable Data Area
  650.  
  651. Sector
  652.     The smallest addressable unit of data on a disk; under MS-DOS,
  653. this is normally 512 bytes.  See also Track.
  654.  
  655. SFT
  656.     see System File Table
  657.  
  658. SVGA
  659.     (Super VGA) A video adapter capable of higher resolution
  660. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  661. VGA adapter is capable of producing.  See also VESA.
  662.  
  663. Swappable Data Area
  664.     The portion of the DOS data segment containing all of the
  665. variables used internally by DOS to record the state of a function call
  666. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  667. 5D0Bh.
  668.  
  669. System File Table
  670.     A System File Table is a DOS-internal data structure used to
  671. maintain the state of an open file for the DOS 2+ handle functions,
  672. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  673. 21h Function 52h.
  674.  
  675. TCP
  676.     (Transmission Control Protocol) A higher level (session layer)
  677. of the TCP/IP protocol suite.  See also IP, TCP/IP.
  678.  
  679. TCP/IP
  680.     The protocol suite originally developed by DARPA for use on its
  681. ARPAnet network, which is now known as the Internet.  See also IP, TCP.
  682.  
  683. TSR
  684.     (Terminate and Stay Resident) A program which remains in memory
  685. after terminating in order to provide services to other programs or the
  686. user.  The name comes from the name of the DOS function call used to
  687. remain in memory after termination.
  688.  
  689. Track
  690.     One of multiple concentric circular rings of data on a single
  691. data-bearing surface of a disk.  Tracks at the same location on
  692. different surfaces form a cylinder.
  693.  
  694. UMB
  695.     see Upper Memory Block
  696.  
  697. UNC
  698.     (Universal Naming Convention) The standard way of describing
  699. network servers and their directories under MS-DOS and Windows NT.  A
  700. name in UNC format consists of two backslashes followed by the server
  701. name, optionally followed by another backslash and a list of
  702. backslash-separated fields; for example
  703. \\SERVER1\SHARED-DIR\SUBDIR1\SUBDIR2\FILENAME.EXT.
  704.  
  705. Upper Memory Block
  706.     A noncontiguous section of allocatable memory located between
  707. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  708.  
  709. V86
  710.     see Virtual-86 Mode
  711.  
  712. VCPI
  713.     see Virtual Control Program Interface
  714.  
  715. VDM
  716.     see Virtual DOS Machine
  717.  
  718. VDS
  719.     see Virtual DMA Specification
  720.  
  721. VESA
  722.     (Video Electronics Standards Association)  An industry group
  723. which sets both hardware and software standards and recommendations.
  724. The term VESA is also used to denote compliance with the VESA SuperVGA
  725. BIOS Extensions, a standard set of video BIOS functions for accessing
  726. video modes of higher resolution than those defined by IBM.
  727.  
  728. VGA
  729.     (Video Graphics Array) The video adapter introduced with the
  730. IBM PS/2 series of computers.
  731.  
  732. Virtual-86 Mode
  733.     One of the operating modes of the 80386 and 80486 processors in
  734. which user programs run as if the CPU were in Real Mode, while
  735. providing the protection and address-mapping capabilities of Protected
  736. Mode to a supervisor program which oversees the virtual machine on
  737. which the user programs are running.  This mode is called Virtual-86
  738. because one or more virtual 8086 environments are run on a single CPU.
  739. See also Protected Mode, Real Mode, Virtual Machine.
  740.  
  741. Virtual Control Program Interface
  742.     A simple API for protected-mode programs to allocate memory and
  743. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  744.  
  745. Virtual DMA Specification
  746.     A set of interrupt calls which permit the use of DMA even on
  747. systems running in protected or Virtual-86 mode with their address
  748. remapping, or systems such as Micro Channel PS/2s with multiple bus
  749. masters independently performing DMA operations.
  750.  
  751. Virtual DOS Machine
  752.     A special type of virtual machine provided by OS/2 version 2.0,
  753. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  754. even an incompatible 8086 operating system) is run and appears to have
  755. full control of the system.  See also Virtual Machine, INT 21h Function
  756. 64h.
  757.  
  758. Virtual Machine
  759.     One method for multitasking programs is to virtualize the CPU
  760. and other hardware, giving the appearance of sole possession of the
  761. system to each program being run.  Such a virtualized environment is
  762. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  763. Machine.
  764.  
  765. VM
  766.     see Virtual Machine
  767.  
  768. VxD
  769.     A virtual device driver for Windows 3.0 or 3.1.  See also
  770. device driver.
  771.  
  772. XBDA
  773.     see Extended BIOS Data Area
  774.  
  775. XDI
  776.     see External Device Interface
  777.  
  778. XMS
  779.     see Extended Memory Specification
  780.  
  781. YUV
  782.     A color specification mechanism used in NTSC-type color
  783. television signals.  Y represents luminance (overall brightness, the
  784. only part of the signal used by black-and-white televisions), while U
  785. and V are chrominance (color) information.  Also called YIQ.  See also
  786. RGB.
  787.